home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0797.zip / ZOLMAN.ZIP / TOPVIEW.H < prev   
C/C++ Source or Header  |  1996-11-18  |  1KB  |  53 lines

  1. // TopView.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CTopView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CTopView : public CFormView
  12. {
  13. protected:
  14.     CTopView();           // protected constructor used by dynamic creation
  15.     DECLARE_DYNCREATE(CTopView)
  16.  
  17. // Form Data
  18. public:
  19.     //{{AFX_DATA(CTopView)
  20.     enum { IDD = IDD_TOP };
  21.         // NOTE: the ClassWizard will add data members here
  22.     //}}AFX_DATA
  23.  
  24. // Attributes
  25. public:
  26.  
  27. // Operations
  28. public:
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CTopView)
  33.     protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. protected:
  39.     virtual ~CTopView();
  40. #ifdef _DEBUG
  41.     virtual void AssertValid() const;
  42.     virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44.  
  45.     // Generated message map functions
  46.     //{{AFX_MSG(CTopView)
  47.         // NOTE - the ClassWizard will add and remove member functions here.
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.